Add extra_returning_fields in apply#767
Conversation
b3be96a to
24aa060
Compare
24aa060 to
c224408
Compare
|
Sorry for the late. I'm thinking of a parameter to return/reload every column instead of specified ones only. It saves a get call, which is probably being used in such case now. Another nitpicky point is the usage of tuple in this PR. As I understand, list is more suitable here, semantically. Quoting Python doc: |
|
Yes. Tuple should be replaced by Sequence in Python, which sugguests an immutable sequence although you can still pass list.
It's certainly better to get all columns by default, but for now a transitional approach would be more realistic to avoid API change |
|
I don't mean that big a change, but just an additional parameter like |
Closes #730